home *** CD-ROM | disk | FTP | other *** search
- #ifndef _FloatWindow_h_
- #define _FloatWindow_h_
-
- #include "Window.h"
-
- class FloatWindow : public Window
- {
- public:
- FloatWindow( void );
-
- Boolean SetUp( short pic , short width , short height , short xLoc , short yLoc );
-
- virtual void HandleMouseClick( Boolean down , point where );
- virtual void HandleMouseMove( point where );
- virtual Boolean PointInWindow( point where );
-
- virtual Boolean Front( void );
- virtual void SetFront( Boolean f );
-
- virtual void DrawToScreen( rect *where , Boolean backGround );
-
- private:
-
-
- };
-
-
-
- #endif